home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / Drop•MPSR / Spinning Cursor Lib ƒ / SpinLib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-03  |  319 b   |  27 lines  |  [TEXT/KAHL]

  1. /*
  2.     SpinLib.h
  3.  
  4.     A beachball cursor spinning library.
  5. */
  6.  
  7. #pragma once
  8.  
  9. #ifndef _H_SpinLib_
  10. #define _H_SpinLib_
  11.  
  12. #ifdef __cplusplus
  13. extern "C"{
  14. #endif
  15.  
  16. OSErr SpinInit(void);
  17. OSErr SpinStart(short direction);
  18. OSErr SpinStop(void);
  19. OSErr SpinCleanup(void);
  20. Boolean SpinSpinning(void);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif
  27.